home *** CD-ROM | disk | FTP | other *** search
/ 1,000+ Great Games / 1_1000 Games.iso / DOSGAMES / BOGGLE.ZIP / SOURCE.ZIP / AOPTIONS.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-14  |  1.2 KB  |  36 lines

  1. #ifndef ATEXTDIALOG_HPP
  2. #define ATEXTDIALOG_HPP
  3.  
  4. #include <iframe.hpp>                   //IFrameWindow Class (Parent)
  5. #include <icmdhdr.hpp>                  //ICommandHandler (Parent)
  6. #include <icheckbx.hpp>                 //ICheckBox Class
  7.  
  8. #include "bogwin.hpp"
  9.  
  10. //**************************************************************************
  11. // Class:   AOptionsDialog                                                 *
  12. //                                                                         *
  13. // Purpose: Dialog window for the C++ Hello World sample application.      *
  14. //          It is a subclass of IFrameWindow, ICommandHandler              *
  15. //                                                                         *
  16. //**************************************************************************
  17. class AOptionsDialog : public IFrameWindow, public ICommandHandler
  18. {
  19. public:
  20.   AOptionsDialog (IWindow * ownerWnd, unsigned long rid, TBogWindow* pbwindow) ;
  21.   ~AOptionsDialog();
  22.  
  23. protected:
  24.   virtual Boolean
  25.   command(ICommandEvent& cmdevt);     //Process the dialog command events
  26.  
  27. private:
  28.   TBogWindow*       pbwin;
  29.   IEntryField*      timerDuration;
  30.   ICheckBox*        soundCheckBox;
  31. };
  32.  
  33. #endif
  34.  
  35.  
  36.